home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / Kubuntu 8.10 / kubuntu-8.10-desktop-i386.iso / casper / filesystem.squashfs / var / lib / dpkg / info / kdm.config < prev    next >
Text File  |  2008-10-24  |  3KB  |  88 lines

  1. #!/bin/sh
  2. # Debian kdm package configuration script
  3. # stolen from the xdm scripts
  4. # Copyright 2000--2003 Branden Robinson.
  5. # Licensed under the GNU General Public License, version 2.  See the file
  6. # /usr/share/common-licenses/GPL or <http://www.gnu.org/copyleft/gpl.txt>.
  7.  
  8. set -e
  9.  
  10. # source debconf library
  11. . /usr/share/debconf/confmodule
  12.  
  13. THIS_PACKAGE=kdm
  14.  
  15. # set default display manager
  16. DEFAULT_DISPLAY_MANAGER_FILE=/etc/X11/default-display-manager
  17.  
  18. OWNERS=
  19. if db_metaget shared/default-x-display-manager owners; then
  20.   OWNERS="$RET"
  21. fi
  22.  
  23. CHOICES=
  24. if db_metaget shared/default-x-display-manager choices; then
  25.   CHOICES="$RET"
  26. fi
  27.  
  28. if [ "$OWNERS" != "$CHOICES" ]; then
  29.   # FIXME - redo this part uses shell-lib.sh from xfree86
  30.   # observe "X display managers now available are \"$OWNERS\""
  31.   db_subst shared/default-x-display-manager choices "$OWNERS"
  32.   db_fset shared/default-x-display-manager seen false
  33. fi
  34.  
  35. # debconf is not a registry; use the current contents of the default display
  36. # manager file to pre-answer the question if possible
  37. if [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ]; then
  38.   CURRENT_DEFAULT=$(grep -v '^[[:space:]]*#' \
  39.                                 "$DEFAULT_DISPLAY_MANAGER_FILE" |
  40.                                 head -n 1)
  41.   # both the binaries for kdm and kdm-kde4 share the same basename
  42.   # so we need to check if its kdm-kde4 or another display manager
  43.   if [ "$CURRENT_DEFAULT" = "/usr/lib/kde4/bin/kdm" ]; then
  44.     CURRENT_DEFAULT=${THIS_PACKAGE}-kde4
  45.   else
  46.     CURRENT_DEFAULT=$(basename $CURRENT_DEFAULT)
  47.   fi
  48.   if [ -n "$CURRENT_DEFAULT" ]; then
  49.     if ! which "$CURRENT_DEFAULT" > /dev/null 2>&1; then
  50.       echo .
  51.       # FIXME - redo this part uses shell-lib.sh from xfree86
  52.       #observe "default display manager \"$CURRENT_DEFAULT\" specified in" \
  53.       #        "$DEFAULT_DISPLAY_MANAGER_FILE does not exist or is not" \
  54.       #        "executable"
  55.     fi
  56.     db_set shared/default-x-display-manager "$CURRENT_DEFAULT"
  57.   fi
  58. else
  59.   CURRENT_DEFAULT=
  60.   if db_get shared/default-x-display-manager; then
  61.     CURRENT_DEFAULT="$RET"
  62.   fi
  63. fi
  64.  
  65. db_input high shared/default-x-display-manager || true
  66. db_go
  67.  
  68. # using this display manager?
  69. NEW_DEFAULT=
  70. if db_get shared/default-x-display-manager; then
  71.   NEW_DEFAULT="$RET"
  72. fi
  73.  
  74. # move the default display manager file if we're going to change it
  75. if [ -n "$NEW_DEFAULT" ]; then
  76.   if [ "$NEW_DEFAULT" != "$CURRENT_DEFAULT" ]; then
  77.     if [ -e "$DEFAULT_DISPLAY_MANAGER_FILE" ]; then
  78.       # FIXME - redo this part uses shell-lib.sh from xfree86
  79.       # observe "preparing to change default X display manager from" \
  80.       #     "\"$CURRENT_DEFAULT\" to \"$NEW_DEFAULT\""
  81.       mv "$DEFAULT_DISPLAY_MANAGER_FILE" \
  82.          "$DEFAULT_DISPLAY_MANAGER_FILE.dpkg-tmp"
  83.     fi
  84.   fi
  85. fi
  86.  
  87. exit 0
  88.